import { UserProfileBadge } from "@/components/layout/user-profile-badge" import Image from "next/image" import { authOptions } from "@/app/api/auth/[...nextauth]/route" import { getServerSession } from "next-auth/next" export default async function PendingLayout({ children, }: { children: React.ReactNode }) { const session = await getServerSession(authOptions) return (